if [ ! -f /etc/upsilon/upsilon ]
then			# upsilon not found
	exit
fi

case "$1" in
'start')
	/etc/upsilon/upsilon start
	;;
'stop')
	/etc/upsilon/upsilon stop
	;;
*)
	echo "Usage: ./S96rups { start | stop }"
	;;
esac
